home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Utilities Experience
/
The Utilities Experience - Volume 1.iso
/
software
/
misc
/
a-d
/
3.0iupdate
/
macros.lha
/
CreateIndex.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-09-20
|
707b
|
20 lines
/* $VER: CreateIndex.rexx 1.0 (02.9.94)
Copyright 1994 Soft-Logik Publishing Corporation
May not be distributed without Soft-Logik Publishing Corporation's express written permission */
OPTIONS RESULTS
ADDRESS 'PAGESTREAM'
/* Allocate requester */
allocarexxrequester '"Work in Progress"' 444 63
reqhandle=result
/* Add gadgets */
addarexxgadget reqhandle EXIT 187 46 70 label "_Ok"
addhandle=result
addarexxgadget reqhandle TEXT 8 10 424 border none string "'Sorry, this is not finished yet. A completed version'"
addarexxgadget reqhandle TEXT 8 22 424 border none string "'will be included with a free update to PageStream3.'"
doarexxrequester reqhandle
freearexxrequester reqhandle
EXIT